home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / IE7proSetup_2.3.exe / userscripts / GMailCssSkin.ieuser.js < prev    next >
Text File  |  2007-11-20  |  2KB  |  29 lines

  1. /*
  2.  * Title: GMail CSS Skin
  3.  * Description: Greasemonkey script for Firefox to change the appearance of GMail
  4.  * Author: Lucas Garcia, www.lgarcia.org
  5.  * Updated: 29/11/2005
  6.  * 
  7.  */
  8.  
  9. // ==UserScript==
  10. // @name GMail CSS Skin
  11. // @namespace http://www.lgarcia.org/archives/skin-para-gmail
  12. // @description Greasemonkey script for Firefox to change the appearance of GMail
  13. // @injectframes 1
  14. // @include http://gmail.google.com/*
  15. // @include http://mail.google.com/*
  16. // @include https://gmail.google.com/*
  17. // @include https://mail.google.com/*
  18. // ==/UserScript==
  19.  
  20. (function(){ 
  21.     
  22.     var cssStyle = '.p { margin-top: 5px; color: #3366cc; font-weight: bold; } .ct { color: #006633; }  span.lk { text-decoration: none; font-style: italic; font-size: 11pt; font-family: Trebuchet MS, Georgia, Arial;} div.nl { background-color: #E8EEF7} #nb_1{ display: none !important } span.lk#refresh { text-decoration: underline; font-style: normal; font-size: 10pt; } table.tlc tr.ur { background-color: #fff  !important; } table.tlc tr.rr { background-color: #E8EEF7 !important; } table.tlc tr.ur td, table.tlc tr.rr td{    border: 0 !important; line-height: 1.5em} table.tlc tr.rr:hover{ background-color: #B5EDBC !important; } #nb_0 img { display: none } #nb_0 { font-size: 10pt; }  #nb_0 table td.s { padding-top: 2px; padding-bottom: 2px; color: #006633; font-style: italic; font-weight: bold; } input, button { padding: 3px !important} div.h#ds_inbox img { display: none } div.h#ds_inbox { background-image: url(http://static.flickr.com/34/68354073_a68a090fc7_m.jpg) !important; width: 143px !important;    height: 59px !important; background-repeat: no-repeat !important; } span.lk:hover { color: green; text-decoration: underline; } span.lk#prf_g { font-size: 10pt; font-style: normal; text-decoration: underline; } div#nav sup { display: none !important; } div#ft { display: none !important; } #il { display: none !important; } div#nav { margin-top: 5px } #tamu { font-family: Verdana; font-size: 9pt; color: #3366cc; height: 24px; line-height: 1.5em; font-weight: bold; } span.lk#ds_trash { color: #c00 } span.lk#ds_spam { color: #999 }';
  23.     
  24.     PRO_addStyle(cssStyle, document);
  25. })()
  26.  
  27.  
  28.  
  29.